The neuroimaging data releases contain the MRI data, physiological data obtained during scanning (cardiac and respiratory) and only basic phenotypic information (age, sex, handedness). The following scans are included for subjects in the Cross-Sectional Lifespan Connectomics Study, Longitudinal Developmental Connectomics Study, and Mapping Interindividual Variation In The Aging Connectome studies:
The Real-Time Neurofeedback study includes these scans:
Anonymized image data is available in either DICOM or NIfTI file formats on NITRC. Each scan folder also includes a JSON file containing information on scan parameters and file provenance (any changes made to the image since it came out of the scanner).
In order to access NKI-RS neuroimaging data via NITRC you must be:
Once these conditions are satisified, you may use the links below to download data. If you are not logged in and properly registered a permissions error will occur.
DICOM Files Downloads
- Release 1 (181 subjects)
- Release 2 (14 subjects)
- Release 3 (46 subjects)
- Release 4 (88 Subjects)
- Release 5 (89 Subjects)
- Release 6 (151 Subjects) COMING SOON
- Release 7 (88 Subjects) COMING SOON
- Release 8 (114 Subjects)
NIfTI Files Downloads
Physiological Data (cardiac and respiratory recordings) Downloads
- Release 1 (For initial subjects in Release 1, cardiac data has been excluded due to a technical error; respiratory data was unaffected. Click here for a listing of affected subjects.
- Release 2
- Release 3
- Release 4 Coming Soon
- Release 5 Coming Soon
- Release 6 Coming Soon
- Release 7 Coming Soon
Motion Statistics
Release 1
Release 2
Release 3
Release 4
Release 5
Release 6
Release 7
Minimal Phenotypic Information (age, sex, handedness) Downloads
Data for the Rockland Sample Neuroimaging Data Release are available for download in an Amazon Web Services S3 bucket. These data are currently organized as follows:
Each file in the S3 bucket can only be accessed using HTTP (i.e., no ftp or scp ). You can obtain a URL for each desired file and then download it using an HTTP client such as a web browser, wget, or curl. Each file can only be accessed using its literal name- wildcards will not work. We have written a script (described below) that can perform custom dataset downloads for you via HTTP.
There are file transfer programs that can handle S3 natively and will allow you to navigate through the data using a file browser. Cyberduck is one such program that works with Windows and Mac OS X. Cyberduck also has a command line version that works with Windows, Mac OS X, and Linux. Instructions for using Cyberduck are as follows:
The end result should appear as follows:
The Python script located here allows you to specify a number of options so to download a customized subset of the sample from the S3 bucket. In particular, it allows you to specify:
- Age Ranges
- Sex
- Handedness
- Study and Visit
- Scan Type
- Series
- Whether or not to download some derivatives of the raw data (such as despiked physiological data collected alongside series or a mask used in the real-time neurofeedback study).
If none of these items are specified, the script will assume that you would like to download all available raw NKI-RS Neuroimaging Data release data without derivatives.
The script requires the following dependencies to function properly:
- Python 2
- pandas
To install pandas within Python 2, you can use the following command: pip install pandas
Note: All examples in this section assume some literacy with the Unix command line and that the commands are being executed from the local directory where the script is stored. If you have not used the command line before, a number of tutorials to get you started are linked to here.
If you want to specify which studies / visits to download, you must take a study code and append the desired visit code to it, and then add this after the -v option. You may specify multiple study/visit code combinations after this option.
- Real-Time Neurofeedback
- Study Code: NFB
- Visit Codes:
- 2 - The second visit (original 2-day scheduling format).
- 2R - A re-visit to complete scans for the second visit (original 2-day scheduling format).
- A - The abridged second visit (abridged scheduling format).
- AR - A re-visit to complete scans for the abridged second visit (abridged scheduling format).
- 3 - The third visit.
- Cross-Sectional Lifespan Connectomics
- Study Code: DS
- Visit Codes:
- 2 - The second visit (original 2-day scheduling format).
- A - The abridged second visit (abridged scheduling format).
- Longitudinal Developmental Connectomics
- Study Code: CLG
- Visit Codes:
- 2 - The second visit (original 2-day scheduling format).
- A - The abridged second visit (abridged scheduling format).
- 2R - The second visit (original scheduling format) with a re-test.
- AR - The abridged second visit (abridged scheduling format) with a re-test.
- 3 - The third visit.
- 4 - The fourth visit.
- 4R - The fourth visit with a re-test.
- 5 - The fifth visit.
Note that in the real-time neurofeedback study, ‘R’ signifies a re-visit, while in the longitudinal developmental connectomics study, it represents a re-test.
For example:
python download_rockland_raw_bids.py -o /data/output -v CLG4 CLG4R CLG5
This will download all of the files for the cross-sectional lifespan connectomics study for the 4th and 5th visits and store them in /data/output in BIDS format.
Multiple scan types, separated by spaces after the scan type parameter, can be selected. These scan types can take on the following values, which come from the BIDS specification:
- anat - Anatomical scans.
- func - Functional/resting-state scans.
- dwi - DTI scans.
- fmap - Field map scans (NFB3 only)
For example:
python download_rockland_raw_bids.py -o /data/output -t anat dwi
This will download all of the anatomical and dti data only across all visits.
Similarly, multiple series can be specified at the command line. These series can take on the following values:
- Non-neurofeedback studies:
- REST645
- REST1400
- RESTCAP
- RESTPCASL
- CHECKERBOARD645
- BREATHHOLD1400
- CHECKERBOARD1400
- Neurofeedback:
- DMNTRACKINGTRAIN
- DMNTRACKINGTEST
- MASK
- MORALDILEMMA
- MSIT
- PEER1
- PEER2
For example:
python download_rockland_raw_bids.py -o /data/output -e REST645 DMNTRACKINGTRAIN
This will download only the data for these two series across all participants and visits.
Toggling the derivatives flag will download the mask used for the real-time neurofeedback study and despiked physiological data in addition to any other data that fit the other given criteria.
For example, the following command will download all Rockland sample data plus the aforementioned derivatives:
python download_rockland_raw_bids.py -o /data/output -d
Here is a more complex example of the downloader script’s syntax, which illustrates how you can combine command line options to generate extremely nuanced subsets of the Rockland sample.
python download_rockland_raw_bids.py -o /data/output -e REST645 -v DSA DS2 NFBAR NFB2R -t anat func -gt 15 -lt 40 -m L -x F
This command would download all anatomical series and all resting state series with a 645 ms TR for left-handed women between the ages of 15 and 40, but only from the abridged and second visits of the discovery science and neurofeedback studies. This data could be used to assess within-subject variations in connectivity and neuroanatomy for this specific population, since the first visit for the discovery science and neurofeedback protocols are identical.
To get more information on all of the parameters you may use, type:
python download_rockland_raw_bids.py -h